My CV

Francesca Antinori

Intro

Quarto enables you to weave together content and executable code into a finished presentation. To learn more about Quarto presentations see https://quarto.org/docs/presentations/.

The Office

Giulia, the HR

Giorgio, the IT guy

Mariano, the colleague who has been waiting to retire since 1974

Code highlight

Here

When you click the Render button a presentation will be generated that includes both content and the output of embedded code. You can embed code like this:

library(ggplot2)
ggplot(mtcars,
       aes(mpg, hp, size = gear)) +
  geom_point()